home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / VOL.HLP < prev   
Text File  |  1985-09-10  |  1KB  |  32 lines

  1. ------------------------  VOL - Internal DOS Command  --------------------------
  2.  
  3. VOL displays the volume label of a disk.
  4.  
  5. FORMAT:   VOL [d:]
  6.  
  7. REMARKS:
  8.  
  9.    d: - the letter of the drive containing the disk whose volume label is to be
  10.         displayed.  If omitted, the default drive is assumed.
  11.  
  12.    VOL displays the label if one exists.  If no label exists, the message
  13.    "Volume in drive d has no label" is displayed.
  14.  
  15.    Volume labels provide a way for you to identify a disk.
  16.  
  17.    In DOS Version 2, a disk label may be created only when the disk is
  18.    formatted.  In DOS Version 3, a disk label may be created when the disk is
  19.    formatted, or with the LABEL command.
  20.  
  21. EXAMPLE:
  22.  
  23. The batch file below starts the program BUDGET.  Before the program is started,
  24. the volume label is displayed for the user to ensure that the correct disk is in
  25. drive B:
  26.  
  27.           REM  Starting Budget Application
  28.           PAUSE  Place BUDGET DATA disk in Drive B
  29.           VOL B:
  30.           PAUSE Volume Label should be BUDGET DATA
  31.           BUDGET
  32.